home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OBOXB.C < prev    next >
C/C++ Source or Header  |  1993-03-22  |  150b  |  11 lines

  1. /*
  2.     おこめ標準グラフィック関数
  3. */
  4.  
  5. #include    <NORMLIB.h>
  6.  
  7. void boxb(int x, int y, int xn, int yn, int c)
  8. {
  9.     box(x, y, xn, yn, 0x02, c, 0);
  10. }
  11.